home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / language / gemfsc18.lzh / AESSRC18.LZH / AESFUNCS / FRMENABL.C < prev    next >
C/C++ Source or Header  |  1992-03-14  |  342b  |  14 lines

  1. /**************************************************************************
  2.  * FRMENABL.C - Set the blit function vector.
  3.  *************************************************************************/
  4.  
  5. #include <osbind.h>
  6. #include "gemfast.h"
  7.  
  8. extern  long (*_FrBltVector)();
  9.  
  10. void frm_enableblit()
  11. {
  12.     _FrBltVector = grf_blit;
  13. }
  14.